2026-03-22 17:40:36,442 [ 226070 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2026-03-22 17:40:36,443 [ 226070 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2026-03-22 17:40:36,443 [ 226070 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2026-03-22 17:40:36,443 [ 226070 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_zysyhv --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [1 item] scheduling tests via LoadFileScheduling test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup [gw1] [100%] FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup =================================== FAILURES =================================== _________________________ test_shutdown_cancels_backup _________________________ [gw1] linux -- Python 3.10.12 /usr/bin/python3 def test_shutdown_cancels_backup(): > with NoTrashChecker() as no_trash_checker: test_backup_restore_on_cluster/test_cancel_backup.py:556: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = type = None, value = None, traceback = None def __exit__(self, type, value, traceback): list_of_znodes = set( node1.query( "SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' " + "AND NOT (name == 'alive_tracker')" ).splitlines() ) new_znodes = list_of_znodes.difference(self.__previous_list_of_znodes) if new_znodes: print(f"Found nodes in ZooKeeper: {new_znodes}") for node in new_znodes: print( f"Nodes in '/clickhouse/backups/{node}':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}'" ) ) print( f"Nodes in '/clickhouse/backups/{node}/stage':\n" + node1.query( f"SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups/{node}/stage'" ) ) if self.check_zookeeper: assert new_znodes == set() list_of_backups = set( os.listdir(os.path.join(node1.cluster.instances_dir, "backups")) ) new_backups = list_of_backups.difference(self.__previous_list_of_backups) unfinished_backups = set( backup for backup in new_backups if not os.path.exists( os.path.join(node1.cluster.instances_dir, "backups", backup, ".backup") ) ) new_backups = set( backup for backup in new_backups if backup not in unfinished_backups ) if new_backups: print(f"Found new backups: {new_backups}") if unfinished_backups: print(f"Found unfinished backups: {unfinished_backups}") assert new_backups == set(self.expect_backups) assert unfinished_backups.difference(self.allow_unfinished_backups) == set() all_errors = set() start_time = time.strftime( "%Y-%m-%d %H:%M:%S", self.__start_time_for_collecting_errors ) for node in nodes: errors_query_result = node.query( "SELECT name FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "') " + "AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) " + "AND NOT (name == 'NO_ELEMENTS_IN_CONFIG')" ) errors = errors_query_result.splitlines() if errors: print(f"{get_node_name(node)}: Found errors: {errors}") print( node.query( "SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('" + start_time + "')" ) ) for error in errors: > assert (error in self.expect_errors) or (error in self.allow_errors) E AssertionError: assert ('NETLINK_ERROR' in ['QUERY_WAS_CANCELLED'] or 'NETLINK_ERROR' in []) E + where ['QUERY_WAS_CANCELLED'] = .expect_errors E + and [] = .allow_errors test_backup_restore_on_cluster/test_cancel_backup.py:394: AssertionError ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2026-03-22 17:40:44.626000 [ 621 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2026-03-22 17:40:44.652000 [ 621 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-03-22 17:40:44.653000 [ 621 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2026-03-22 17:40:44.653000 [ 621 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2026-03-22 17:40:44.653000 [ 621 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2026-03-22 17:40:44.672000 [ 621 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2026-03-22 17:40:44.677000 [ 621 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2026-03-22 17:40:44.678000 [ 621 ] INFO : Running tests in /ClickHouse/tests/integration/test_backup_restore_on_cluster/test_cancel_backup.py (cluster.py:2738, start) 2026-03-22 17:40:44.678000 [ 621 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2026-03-22 17:40:44.702000 [ 621 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2026-03-22 17:40:44.731000 [ 621 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2026-03-22 17:40:44.763000 [ 621 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2026-03-22 17:40:44.763000 [ 621 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2026-03-22 17:40:44.797000 [ 621 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2026-03-22 17:40:44.821000 [ 621 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2026-03-22 17:40:44.847000 [ 621 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2026-03-22 17:40:44.848000 [ 621 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-03-22 17:40:44.878000 [ 621 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2026-03-22 17:40:44.878000 [ 621 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw1 (cluster.py:879, cleanup) 2026-03-22 17:40:44.878000 [ 621 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2026-03-22 17:40:44.907000 [ 621 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2026-03-22 17:40:44.907000 [ 621 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-03-22 17:40:44.947000 [ 621 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-03-22 17:40:44.948000 [ 621 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2026-03-22 17:40:44.948000 [ 621 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2026-03-22 17:40:44.948000 [ 621 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-03-22 17:40:44.979000 [ 621 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-03-22 17:40:44.979000 [ 621 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2026-03-22 17:40:44.980000 [ 621 ] DEBUG : Setup directory for instance: node1 (cluster.py:2758, start) 2026-03-22 17:40:44.981000 [ 621 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2026-03-22 17:40:44.982000 [ 621 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2026-03-22 17:40:44.982000 [ 621 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2026-03-22 17:40:44.983000 [ 621 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2026-03-22 17:40:44.983000 [ 621 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/configs/config.d (cluster.py:4741, create_dir) 2026-03-22 17:40:44.984000 [ 621 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/database (cluster.py:4758, create_dir) 2026-03-22 17:40:44.984000 [ 621 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs (cluster.py:4769, create_dir) 2026-03-22 17:40:44.984000 [ 621 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4850, create_dir) 2026-03-22 17:40:44.985000 [ 621 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/backups (cluster.py:4879, create_dir) 2026-03-22 17:40:44.985000 [ 621 ] DEBUG : Setup directory for instance: node2 (cluster.py:2758, start) 2026-03-22 17:40:44.985000 [ 621 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2026-03-22 17:40:44.985000 [ 621 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2026-03-22 17:40:44.986000 [ 621 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2026-03-22 17:40:44.986000 [ 621 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2026-03-22 17:40:44.986000 [ 621 ] DEBUG : Copy custom test config files ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/backups_disk.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/cluster.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/lesser_timeouts.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/slow_backups.xml', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/configs/shutdown_cancel_backups.xml'] to /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/configs/config.d (cluster.py:4741, create_dir) 2026-03-22 17:40:44.987000 [ 621 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/database (cluster.py:4758, create_dir) 2026-03-22 17:40:44.987000 [ 621 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs (cluster.py:4769, create_dir) 2026-03-22 17:40:44.987000 [ 621 ] DEBUG : Entrypoint cmd: bash -c "trap 'pkill tail' INT TERM; clickhouse server --config-file=/etc/clickhouse-server/config.xml --log-file=/var/log/clickhouse-server/clickhouse-server.log --errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log --daemon -- ; coproc tail -f /dev/null; wait $$!" (cluster.py:4850, create_dir) 2026-03-22 17:40:44.987000 [ 621 ] INFO : external_dir_abs_path=/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/backups (cluster.py:4879, create_dir) 2026-03-22 17:40:44.987000 [ 621 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw', 'keeper_binary': '/clickhouse', 'keeper_cmd_prefix': 'clickhouse keeper', 'image': 'altinityinfra/integration-test:5ccda723c1fc', 'user': '0', 'keeper_fs': 'bind', 'keeper_logs_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/log', 'keeper_config_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/config', 'keeper_db_dir1': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/coordination', 'keeper_logs_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/log', 'keeper_config_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/config', 'keeper_db_dir2': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/coordination', 'keeper_logs_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/log', 'keeper_config_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/config', 'keeper_db_dir3': '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/coordination'} stored in /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env (cluster.py:96, _create_env_file) 2026-03-22 17:40:44.988000 [ 621 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-03-22 17:40:44.988000 [ 621 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-03-22 17:40:44.988000 [ 621 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2026-03-22 17:40:44.988000 [ 621 ] DEBUG : No config file found (config.py:28, find_config_file) 2026-03-22 17:40:44.999000 [ 621 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2026-03-22 17:40:45.000000 [ 621 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml pull] (cluster.py:121, run_and_check) 2026-03-22 17:40:55.529000 [ 621 ] DEBUG : Stderr: node1 Skipped - Image is already being pulled by node2 (cluster.py:147, run_and_check) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Stderr: zoo1 Skipped - Image is already being pulled by node2 (cluster.py:147, run_and_check) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Stderr: zoo2 Skipped - Image is already being pulled by node2 (cluster.py:147, run_and_check) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Stderr: zoo3 Skipped - Image is already being pulled by node2 (cluster.py:147, run_and_check) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Stderr: node2 Pulling (cluster.py:147, run_and_check) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Stderr: node2 Pulled (cluster.py:147, run_and_check) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Setup ZooKeeper (cluster.py:2799, start) 2026-03-22 17:40:55.530000 [ 621 ] DEBUG : Creating internal ZooKeeper dirs: ['/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper1/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper2/coordination', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/log', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/config', '/ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/keeper3/coordination'] (cluster.py:2800, start) 2026-03-22 17:40:55.532000 [ 621 ] DEBUG : Command:[docker compose --project-name roottestbackuprestoreonclustercancelbackup-gw1 --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --verbose up -d] (cluster.py:121, run_and_check) 2026-03-22 17:40:56.348000 [ 621 ] DEBUG : Stderr:time="2026-03-22T17:40:55Z" level=trace msg="Docker Desktop integration not enabled" (cluster.py:147, run_and_check) 2026-03-22 17:40:56.348000 [ 621 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Creating (cluster.py:147, run_and_check) 2026-03-22 17:40:56.348000 [ 621 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Created (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Creating (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Creating (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Creating (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Created (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Created (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Created (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Starting (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Starting (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Starting (cluster.py:147, run_and_check) 2026-03-22 17:40:56.349000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Started (cluster.py:147, run_and_check) 2026-03-22 17:40:56.350000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Started (cluster.py:147, run_and_check) 2026-03-22 17:40:56.350000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Started (cluster.py:147, run_and_check) 2026-03-22 17:40:56.350000 [ 621 ] DEBUG : Stderr:time="2026-03-22T17:40:56Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-03-22 17:40:56.350000 [ 621 ] DEBUG : Stderr:time="2026-03-22T17:40:56Z" level=debug msg="otel error" error="" (cluster.py:147, run_and_check) 2026-03-22 17:40:56.350000 [ 621 ] DEBUG : Wait ZooKeeper to start (cluster.py:2436, wait_zookeeper_to_start) 2026-03-22 17:40:56.350000 [ 621 ] DEBUG : get_instance_ip instance_name=zoo1 (cluster.py:2005, get_instance_ip) 2026-03-22 17:40:56.353000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:40:56.354000 [ 621 ] DEBUG : get_kazoo_client: zoo1, ip:172.16.1.3, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2026-03-22 17:40:56.356000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:40:56.356000 [ 621 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-03-22 17:40:56.456000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:40:56.457000 [ 621 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-03-22 17:40:56.594000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:40:56.595000 [ 621 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-03-22 17:40:56.852000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:40:56.853000 [ 621 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-03-22 17:40:57.524000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:40:57.525000 [ 621 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-03-22 17:40:59.189000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:40:59.190000 [ 621 ] WARNING : Connection dropped: socket connection error: Connection refused (connection.py:622, _connect_attempt) 2026-03-22 17:41:02.418000 [ 621 ] INFO : Connecting to 172.16.1.3(172.16.1.3):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:41:02.419000 [ 621 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-03-22 17:41:02.433000 [ 621 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-03-22 17:41:02.434000 [ 621 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-03-22 17:41:02.438000 [ 621 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-03-22 17:41:02.438000 [ 621 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-03-22 17:41:02.444000 [ 621 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-03-22 17:41:02.444000 [ 621 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-03-22 17:41:02.445000 [ 621 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-03-22 17:41:02.545000 [ 621 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-03-22 17:41:02.546000 [ 621 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-03-22 17:41:02.546000 [ 621 ] DEBUG : get_instance_ip instance_name=zoo2 (cluster.py:2005, get_instance_ip) 2026-03-22 17:41:02.550000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:02.551000 [ 621 ] DEBUG : get_kazoo_client: zoo2, ip:172.16.1.4, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2026-03-22 17:41:02.552000 [ 621 ] INFO : Connecting to 172.16.1.4(172.16.1.4):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:41:02.553000 [ 621 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-03-22 17:41:02.559000 [ 621 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-03-22 17:41:02.560000 [ 621 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-03-22 17:41:02.561000 [ 621 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-03-22 17:41:02.561000 [ 621 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-03-22 17:41:02.567000 [ 621 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-03-22 17:41:02.567000 [ 621 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-03-22 17:41:02.567000 [ 621 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-03-22 17:41:02.668000 [ 621 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-03-22 17:41:02.668000 [ 621 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-03-22 17:41:02.668000 [ 621 ] DEBUG : get_instance_ip instance_name=zoo3 (cluster.py:2005, get_instance_ip) 2026-03-22 17:41:02.671000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:02.672000 [ 621 ] DEBUG : get_kazoo_client: zoo3, ip:172.16.1.2, port:2181, use_ssl:False (cluster.py:3312, get_kazoo_client) 2026-03-22 17:41:02.673000 [ 621 ] INFO : Connecting to 172.16.1.2(172.16.1.2):2181, use_ssl: False (connection.py:650, _connect) 2026-03-22 17:41:02.674000 [ 621 ] DEBUG : Sending request(xid=None): Connect(protocol_version=0, last_zxid_seen=0, time_out=30000, session_id=0, passwd=b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00', read_only=None) (connection.py:312, _submit) 2026-03-22 17:41:02.684000 [ 621 ] INFO : Zookeeper connection established, state: CONNECTED (client.py:532, _session_callback) 2026-03-22 17:41:02.685000 [ 621 ] DEBUG : Sending request(xid=1): GetChildren(path='/', watcher=None) (connection.py:312, _submit) 2026-03-22 17:41:02.687000 [ 621 ] DEBUG : Received response(xid=1): ['keeper'] (connection.py:410, _read_response) 2026-03-22 17:41:02.688000 [ 621 ] DEBUG : Sending request(xid=2): Close() (connection.py:312, _submit) 2026-03-22 17:41:02.693000 [ 621 ] WARNING : Connection dropped: socket connection broken (connection.py:622, _connect_attempt) 2026-03-22 17:41:02.693000 [ 621 ] WARNING : Transition to CONNECTING (connection.py:626, _connect_attempt) 2026-03-22 17:41:02.693000 [ 621 ] INFO : Zookeeper connection lost (client.py:543, _session_callback) 2026-03-22 17:41:02.766000 [ 621 ] WARNING : Failed connecting to Zookeeper within the connection retry policy. (connection.py:515, zk_loop) 2026-03-22 17:41:02.767000 [ 621 ] INFO : Zookeeper session closed, state: CLOSED (client.py:537, _session_callback) 2026-03-22 17:41:02.767000 [ 621 ] DEBUG : All instances of ZooKeeper started: ('zoo1', 'zoo2', 'zoo3') (cluster.py:2452, wait_zookeeper_nodes_to_start) 2026-03-22 17:41:02.768000 [ 621 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2026-03-22 17:41:02.768000 [ 621 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2026-03-22 17:41:03.310000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Running (cluster.py:147, run_and_check) 2026-03-22 17:41:03.310000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Running (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Running (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Creating (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Creating (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Created (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Created (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Starting (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Starting (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Started (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Started (cluster.py:147, run_and_check) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2026-03-22 17:41:03.311000 [ 621 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2005, get_instance_ip) 2026-03-22 17:41:03.315000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.316000 [ 621 ] DEBUG : get_instance_ip instance_name=node1 (cluster.py:2015, get_instance_global_ipv6) 2026-03-22 17:41:03.318000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.319000 [ 621 ] DEBUG : Waiting for ClickHouse start in node1, ip: 172.16.1.5... (cluster.py:3155, start) 2026-03-22 17:41:03.321000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node1-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.324000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.429000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.533000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.638000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.743000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.847000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:03.951000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.057000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.161000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.264000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.368000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.472000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.576000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.679000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.783000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.887000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:04.995000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.098000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.202000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.306000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.410000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.515000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.619000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.723000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.826000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:05.930000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.033000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.136000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.240000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.344000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.448000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.552000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.656000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/2928a3b34e4cd49b0b4fac1c19a1c1c074a6188b0e8b8db759649ee7f85ff6fa/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.657000 [ 621 ] DEBUG : ClickHouse node1 started (cluster.py:3159, start) 2026-03-22 17:41:06.658000 [ 621 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2005, get_instance_ip) 2026-03-22 17:41:06.661000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.661000 [ 621 ] DEBUG : get_instance_ip instance_name=node2 (cluster.py:2015, get_instance_global_ipv6) 2026-03-22 17:41:06.663000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.664000 [ 621 ] DEBUG : Waiting for ClickHouse start in node2, ip: 172.16.1.6... (cluster.py:3155, start) 2026-03-22 17:41:06.666000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.669000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/fd36cccc9e0a8b4da5c9896d64302e831c5c4b4dd6a079ff7ad34f761294ff90/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.773000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/fd36cccc9e0a8b4da5c9896d64302e831c5c4b4dd6a079ff7ad34f761294ff90/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.877000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/containers/fd36cccc9e0a8b4da5c9896d64302e831c5c4b4dd6a079ff7ad34f761294ff90/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2026-03-22 17:41:06.878000 [ 621 ] DEBUG : ClickHouse node2 started (cluster.py:3159, start) ----------------------------- Captured stdout call ----------------------------- Using node2 as initiator Sleeping 2.5732542740083626 seconds Waiting for number of system processes = 1+ Got 2 system processes for backup c80b154ced284b049a170b99e93b2e63 after waiting 0 seconds node2: Restarting... node2: Restarted Waiting for number of system processes = 0 Got 0 system processes for backup c80b154ced284b049a170b99e93b2e63 after waiting 0 seconds node1: Found errors: ['QUERY_WAS_CANCELLED'] QUERY_WAS_CANCELLED Got error from host node2:9000. DB::Exception: Query was cancelled. Stack trace:\n\n0. ./contrib/llvm-project/libcxx/include/__exception/exception.h:113: Poco::Exception::Exception(String const&, int) @ 0x0000000020e11040\n1. ./build_docker/./src/Common/Exception.cpp:108: DB::Exception::Exception(DB::Exception::MessageMasked&&, int, bool) @ 0x0000000010b395b4\n2. DB::Exception::Exception(PreformattedMessage&&, int) @ 0x00000000087eccc0\n3. DB::Exception::Exception<>(int, FormatStringHelperImpl<>) @ 0x00000000087fb67a\n4. ./build_docker/./src/Interpreters/ProcessList.cpp:567: DB::QueryStatus::throwQueryWasCancelled() const @ 0x0000000018ae074b\n5. ./build_docker/./src/Interpreters/ProcessList.cpp:520: DB::QueryStatus::throwProperExceptionIfNeeded(unsigned long const&, unsigned long const&) @ 0x0000000018ae065e\n6. ./build_docker/./src/Interpreters/ProcessList.cpp:557: DB::QueryStatus::checkTimeLimit() @ 0x0000000018ae0daa\n7. ./build_docker/./src/Backups/BackupsWorker.cpp:679: DB::BackupsWorker::writeBackupEntries(std::shared_ptr, std::vector>, std::allocator>>>&&, String const&, std::shared_ptr, bool, std::shared_ptr)::$_0::operator()() const @ 0x0000000016ee2174\n8. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107], std::vector>, std::allocator>>>&&, String const&, std::shared_ptr, bool, std::shared_ptr)::$_0, void ()>>(std::__function::__policy_storage const*) @ 0x0000000016eea1a2\n9. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000013f27bb1\n10. ./src/Common/threadPoolCallbackRunner.h:178: DB::ThreadPoolCallbackRunnerLocal>, std::function>::operator()(std::function&&, Priority, std::optional)::\'lambda\'()::operator()() @ 0x0000000013f27932\n11. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]>, std::function>::operator()(std::function&&, Priority, std::optional)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x0000000013f27822\n12. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010cbf24f\n13. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: ThreadFromGlobalPoolImpl::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'()::operator()() @ 0x0000000010cc7786\n14. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x0000000010cc76a2\n15. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010cbb900\n16. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: void* std::__thread_proxy[abi:ne190107]>, void (ThreadPoolImpl::ThreadFromThreadPool::*)(), ThreadPoolImpl::ThreadFromThreadPool*>>(void*) @ 0x0000000010cc443c\n17. __tsan_thread_start_func @ 0x0000000008760428\n18. ? @ 0x00007facbe2dbac3\n19. ? @ 0x00007facbe36d850\n\nJob\'s origin stack trace:\n0. ./build_docker/./src/Common/StackTrace.cpp:386: StackTrace::StackTrace() @ 0x0000000010be8773\n1. ./build_docker/./src/Common/ThreadPool.cpp:130: void boost::heap::priority_queue, boost::parameter::void_, boost::parameter::void_, boost::parameter::void_>::emplace, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const, bool&, (anonymous namespace)::ScopedDecrement>(std::function&&, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const&&, bool&, (anonymous namespace)::ScopedDecrement&&) @ 0x0000000010cba45e\n2. ./build_docker/./src/Common/ThreadPool.cpp:401: void ThreadPoolImpl>::scheduleImpl(std::function, Priority, std::optional, bool) @ 0x0000000010cc10d5\n3. ./build_docker/./src/Common/ThreadPool.cpp:494: ThreadPoolImpl>::scheduleOrThrowOnError(std::function, Priority) @ 0x0000000010cc090b\n4. ./src/Common/threadPoolCallbackRunner.h:188: DB::ThreadPoolCallbackRunnerLocal>, std::function>::operator()(std::function&&, Priority, std::optional) @ 0x0000000013f2704e\n5. ./build_docker/./src/Backups/BackupsWorker.cpp:711: DB::BackupsWorker::writeBackupEntries(std::shared_ptr, std::vector>, std::allocator>>>&&, String const&, std::shared_ptr, bool, std::shared_ptr) @ 0x0000000016ee1787\n6. ./build_docker/./src/Backups/BackupsWorker.cpp:590: DB::BackupsWorker::doBackup(std::shared_ptr, std::shared_ptr const&, String const&, DB::BackupSettings const&, std::shared_ptr, std::shared_ptr, std::shared_ptr const&, bool, std::shared_ptr const&) @ 0x0000000016edf785\n7. ./build_docker/./src/Backups/BackupsWorker.cpp:418: DB::BackupsWorker::BackupStarter::doBackup() @ 0x0000000016ef08ce\n8. ./build_docker/./src/Backups/BackupsWorker.cpp:488: void std::__function::__policy_invoker::__call_impl[abi:ne190107] const&, std::shared_ptr const&)::$_0, void ()>>(std::__function::__policy_storage const*) @ 0x0000000016ee9fed\n9. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x000000001687f5e3\n10. ./contrib/llvm-project/libcxx/include/future:1589: std::packaged_task::operator()() @ 0x000000001687f8d5\n11. ./src/Common/threadPoolCallbackRunner.h:52: void std::__function::__policy_invoker::__call_impl[abi:ne190107] (std::function&&, Priority)> DB::threadPoolCallbackRunnerUnsafe>(ThreadPoolImpl>&, String const&)::\'lambda\'(std::function&&, Priority)::operator()(std::function&&, Priority)::\'lambda0\'(), void ()>>(std::__function::__policy_storage const*) @ 0x000000001687f80d\n12. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010cbf24f\n13. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: ThreadFromGlobalPoolImpl::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'()::operator()() @ 0x0000000010cc7786\n14. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]::ThreadFromGlobalPoolImpl>::ThreadFromThreadPool::*)(), ThreadPoolImpl>::ThreadFromThreadPool*>(void (ThreadPoolImpl>::ThreadFromThreadPool::*&&)(), ThreadPoolImpl>::ThreadFromThreadPool*&&)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x0000000010cc76a2\n15. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010cbb900\n16. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: void* std::__thread_proxy[abi:ne190107]>, void (ThreadPoolImpl::ThreadFromThreadPool::*)(), ThreadPoolImpl::ThreadFromThreadPool*>>(void*) @ 0x0000000010cc443c\n17. __tsan_thread_start_func @ 0x0000000008760428\n18. ? @ 0x00007facbe2dbac3\n19. ? @ 0x00007facbe36d850\n\nJob\'s origin stack trace:\n0. ./build_docker/./src/Common/StackTrace.cpp:386: StackTrace::StackTrace() @ 0x0000000010be8773\n1. ./build_docker/./src/Common/ThreadPool.cpp:130: void boost::heap::priority_queue, boost::parameter::void_, boost::parameter::void_, boost::parameter::void_>::emplace, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const, bool&, (anonymous namespace)::ScopedDecrement>(std::function&&, Priority&, StrongTypedef&, DB::OpenTelemetry::TracingContextOnThread const&&, bool&, (anonymous namespace)::ScopedDecrement&&) @ 0x0000000010cba45e\n2. ./build_docker/./src/Common/ThreadPool.cpp:401: void ThreadPoolImpl>::scheduleImpl(std::function, Priority, std::optional, bool) @ 0x0000000010cc10d5\n3. ./build_docker/./src/Common/ThreadPool.cpp:494: ThreadPoolImpl>::scheduleOrThrowOnError(std::function, Priority) @ 0x0000000010cc090b\n4. ./src/Common/threadPoolCallbackRunner.h:52: std::function (std::function&&, Priority)> DB::threadPoolCallbackRunnerUnsafe>(ThreadPoolImpl>&, String const&)::\'lambda\'(std::function&&, Priority)::operator()(std::function&&, Priority) @ 0x000000001687e9a5\n5. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: std::future std::__function::__policy_invoker (std::function&&, Priority)>::__call_impl[abi:ne190107] (std::function&&, Priority)> DB::threadPoolCallbackRunnerUnsafe>(ThreadPoolImpl>&, String const&)::\'lambda\'(std::function&&, Priority), std::future (std::function&&, Priority)>>(std::__function::__policy_storage const*, std::function&&, Priority&&) @ 0x000000001687e685\n6. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000016edd076\n7. ./build_docker/./src/Backups/BackupsWorker.cpp:334: DB::BackupsWorker::start(std::shared_ptr const&, std::shared_ptr) @ 0x0000000016edce1a\n8. ./build_docker/./src/Interpreters/InterpreterBackupQuery.cpp:44: DB::InterpreterBackupQuery::execute() @ 0x0000000018eccfc2\n9. ./build_docker/./src/Interpreters/executeQuery.cpp:1457: DB::executeQueryImpl(char const*, char const*, std::shared_ptr, DB::QueryFlags, DB::QueryProcessingStage::Enum, DB::ReadBuffer*, std::shared_ptr&) @ 0x0000000018e2fd4e\n10. ./build_docker/./src/Interpreters/executeQuery.cpp:1761: DB::executeQuery(DB::ReadBuffer&, DB::WriteBuffer&, bool, std::shared_ptr, std::function, DB::QueryFlags, std::optional const&, std::function const&, std::optional const&)>) @ 0x0000000018e3455b\n11. ./build_docker/./src/Interpreters/DDLWorker.cpp:510: DB::DDLWorker::tryExecuteQuery(DB::DDLTaskBase&, std::shared_ptr const&, bool) @ 0x00000000182c75a7\n12. ./build_docker/./src/Interpreters/DDLWorker.cpp:675: DB::DDLWorker::processTask(DB::DDLTaskBase&, std::shared_ptr const&, bool) @ 0x00000000182c4cf3\n13. ./build_docker/./src/Interpreters/DDLWorker.cpp:453: DB::DDLWorker::scheduleTasks(bool) @ 0x00000000182c16d8\n14. ./build_docker/./src/Interpreters/DDLWorker.cpp:1203: DB::DDLWorker::runMainThread() @ 0x00000000182b8f82\n15. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: ThreadFromGlobalPoolImpl::ThreadFromGlobalPoolImpl(void (DB::DDLWorker::*&&)(), DB::DDLWorker*&&)::\'lambda\'()::operator()() @ 0x00000000182dbce6\n16. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:149: void std::__function::__policy_invoker::__call_impl[abi:ne190107]::ThreadFromGlobalPoolImpl(void (DB::DDLWorker::*&&)(), DB::DDLWorker*&&)::\'lambda\'(), void ()>>(std::__function::__policy_storage const*) @ 0x00000000182dbc02\n17. ./contrib/llvm-project/libcxx/include/__functional/function.h:716: ? @ 0x0000000010cbb900\n18. ./contrib/llvm-project/libcxx/include/__type_traits/invoke.h:117: void* std::__thread_proxy[abi:ne190107]>, void (ThreadPoolImpl::ThreadFromThreadPool::*)(), ThreadPoolImpl::ThreadFromThreadPool*>>(void*) @ 0x0000000010cc443c\n19. __tsan_thread_start_func @ 0x0000000008760428\n20. ? @ 0x00007facbe2dbac3\n21. ? @ 0x00007facbe36d850\n node2: Found errors: ['NETLINK_ERROR'] NO_ELEMENTS_IN_CONFIG Certificate file is not set. NETLINK_ERROR Can\'t receive Netlink response: error -2 ------------------------------ Captured log call ------------------------------- 2026-03-22 17:41:07.882000 [ 621 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3648, query) 2026-03-22 17:41:08.349000 [ 621 ] DEBUG : Executing query CREATE TABLE tbl ON CLUSTER 'cluster' (x UInt64) ENGINE=ReplicatedMergeTree('/clickhouse/tables/tbl/', '{replica}') ORDER BY tuple() PARTITION BY x%10 on node2 (cluster.py:3648, query) 2026-03-22 17:41:08.867000 [ 621 ] DEBUG : Executing query INSERT INTO tbl SELECT number FROM numbers(10) on node2 (cluster.py:3648, query) 2026-03-22 17:41:09.485000 [ 621 ] DEBUG : Executing query BACKUP TABLE tbl ON CLUSTER 'cluster' TO Disk('backups', 'c80b154ced284b049a170b99e93b2e63') SETTINGS id='c80b154ced284b049a170b99e93b2e63' ASYNC on node2 (cluster.py:3648, query) 2026-03-22 17:41:09.902000 [ 621 ] DEBUG : Executing query SELECT status FROM system.backups WHERE id='c80b154ced284b049a170b99e93b2e63' on node2 (cluster.py:3648, query) 2026-03-22 17:41:10.268000 [ 621 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%c80b154ced284b049a170b99e93b2e63%') on node2 (cluster.py:3648, query) 2026-03-22 17:41:13.264000 [ 621 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%c80b154ced284b049a170b99e93b2e63%') on node2 (cluster.py:3648, query) 2026-03-22 17:41:13.734000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:True cmd: ['bash', '-c', 'ps -C clickhouse'] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:13.734000 [ 621 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps -C clickhouse] (cluster.py:121, run_and_check) 2026-03-22 17:41:13.795000 [ 621 ] DEBUG : Stdout: PID TTY TIME CMD (cluster.py:145, run_and_check) 2026-03-22 17:41:13.796000 [ 621 ] DEBUG : Stdout: 8 ? 00:00:05 clickhouse (cluster.py:145, run_and_check) 2026-03-22 17:41:13.796000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', 'pkill clickhouse'] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:13.796000 [ 621 ] DEBUG : Command:[docker exec -u root roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c pkill clickhouse] (cluster.py:121, run_and_check) 2026-03-22 17:41:13.857000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:13.857000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:13.920000 [ 621 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-03-22 17:41:14.922000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:14.922000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:14.992000 [ 621 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-03-22 17:41:15.993000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:15.994000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:16.060000 [ 621 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-03-22 17:41:17.062000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:17.063000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:17.121000 [ 621 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-03-22 17:41:18.123000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:18.123000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:18.178000 [ 621 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-03-22 17:41:19.180000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:19.180000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:19.244000 [ 621 ] DEBUG : Stdout:8 (cluster.py:145, run_and_check) 2026-03-22 17:41:20.245000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:20.246000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:20.301000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:20.302000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:20.378000 [ 621 ] DEBUG : No clickhouse process running. Start new one. (cluster.py:4014, start_clickhouse) 2026-03-22 17:41:20.380000 [ 621 ] DEBUG : http://localhost:None "POST /v1.46/containers/roottestbackuprestoreonclustercancelbackup-gw1-node2-1/exec HTTP/1.1" 201 74 (connectionpool.py:547, _make_request) 2026-03-22 17:41:20.412000 [ 621 ] DEBUG : http://localhost:None "POST /v1.46/exec/c433a0478a9ca8aeb47a6392f469767ee62d7065cdbe0fcbf1e79aab224d5c01/start HTTP/1.1" 200 0 (connectionpool.py:547, _make_request) 2026-03-22 17:41:20.414000 [ 621 ] DEBUG : http://localhost:None "GET /v1.46/exec/c433a0478a9ca8aeb47a6392f469767ee62d7065cdbe0fcbf1e79aab224d5c01/json HTTP/1.1" 200 585 (connectionpool.py:547, _make_request) 2026-03-22 17:41:21.416000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:21.416000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:21.476000 [ 621 ] DEBUG : Stdout:814 (cluster.py:145, run_and_check) 2026-03-22 17:41:21.477000 [ 621 ] DEBUG : Clickhouse process running. (cluster.py:4028, start_clickhouse) 2026-03-22 17:41:21.477000 [ 621 ] DEBUG : run container_id:roottestbackuprestoreonclustercancelbackup-gw1-node2-1 detach:False nothrow:False cmd: ['bash', '-c', "ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'"] (cluster.py:2051, exec_in_container) 2026-03-22 17:41:21.477000 [ 621 ] DEBUG : Command:[docker exec roottestbackuprestoreonclustercancelbackup-gw1-node2-1 bash -c ps ax | grep 'clickhouse' | grep -v 'grep' | grep -v 'coproc' | grep -v 'bash -c' | awk '{print $1}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:21.531000 [ 621 ] DEBUG : Stdout:814 (cluster.py:145, run_and_check) 2026-03-22 17:41:21.531000 [ 621 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-03-22 17:41:22.248000 [ 621 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-03-22 17:41:23.015000 [ 621 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-03-22 17:41:23.733000 [ 621 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-03-22 17:41:24.451000 [ 621 ] DEBUG : Executing query select 20 on node2 (cluster.py:3648, query) 2026-03-22 17:41:24.869000 [ 621 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%c80b154ced284b049a170b99e93b2e63%') on node1 (cluster.py:3648, query) 2026-03-22 17:41:25.337000 [ 621 ] DEBUG : Executing query SELECT count() FROM system.processes WHERE (query_kind='Backup') AND (query LIKE '%c80b154ced284b049a170b99e93b2e63%') on node2 (cluster.py:3648, query) 2026-03-22 17:41:25.755000 [ 621 ] DEBUG : Executing query SYSTEM FLUSH LOGS on node2 (cluster.py:3648, query) 2026-03-22 17:41:27.075000 [ 621 ] DEBUG : Executing query SELECT status FROM system.backup_log WHERE id='c80b154ced284b049a170b99e93b2e63' ORDER BY status on node2 (cluster.py:3648, query) 2026-03-22 17:41:27.493000 [ 621 ] DEBUG : Executing query SELECT name FROM system.zookeeper WHERE path = '/clickhouse/backups' AND NOT (name == 'alive_tracker') on node1 (cluster.py:3648, query) 2026-03-22 17:41:27.960000 [ 621 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2026-03-22 17:41:07') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node1 (cluster.py:3648, query) 2026-03-22 17:41:28.377000 [ 621 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2026-03-22 17:41:07') on node1 (cluster.py:3648, query) 2026-03-22 17:41:28.745000 [ 621 ] DEBUG : Executing query SELECT name FROM system.errors WHERE last_error_time >= toDateTime('2026-03-22 17:41:07') AND NOT ((name == 'KEEPER_EXCEPTION') AND (last_error_message LIKE '%Fault injection%')) AND NOT (name == 'NO_ELEMENTS_IN_CONFIG') on node2 (cluster.py:3648, query) 2026-03-22 17:41:29.112000 [ 621 ] DEBUG : Executing query SELECT name, last_error_message FROM system.errors WHERE last_error_time >= toDateTime('2026-03-22 17:41:07') on node2 (cluster.py:3648, query) ---------------------------- Captured log teardown ----------------------------- 2026-03-22 17:41:29.589000 [ 621 ] DEBUG : Executing query DROP TABLE IF EXISTS tbl ON CLUSTER 'cluster' SYNC on node1 (cluster.py:3648, query) 2026-03-22 17:41:30.107000 [ 621 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.183000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.183000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.183000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.183000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.183000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.183000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.184000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.184000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.184000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.184000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.184000 [ 621 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.197000 [ 621 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.208000 [ 621 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/.env --project-name roottestbackuprestoreonclustercancelbackup-gw1 --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node1/docker-compose.yml --file /ClickHouse/tests/integration/helpers/../../../tests/integration/compose/docker_compose_keeper.yml --file /ClickHouse/tests/integration/test_backup_restore_on_cluster/_instances-cancel_backup-1-gw1/node2/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.713000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Removing (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Removing (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node1-1 Removed (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-node2-1 Removed (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopping (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Removing (cluster.py:147, run_and_check) 2026-03-22 17:41:31.714000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Removing (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Stopped (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Removing (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo1-1 Removed (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo3-1 Removed (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Container roottestbackuprestoreonclustercancelbackup-gw1-zoo2-1 Removed (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Removing (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Stderr: Network roottestbackuprestoreonclustercancelbackup-gw1_default Removed (cluster.py:147, run_and_check) 2026-03-22 17:41:31.715000 [ 621 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2026-03-22 17:41:31.734000 [ 621 ] DEBUG : Docker networks for project roottestbackuprestoreonclustercancelbackup-gw1 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2026-03-22 17:41:31.758000 [ 621 ] DEBUG : Docker containers for project roottestbackuprestoreonclustercancelbackup-gw1 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2026-03-22 17:41:31.780000 [ 621 ] DEBUG : Docker volumes for project roottestbackuprestoreonclustercancelbackup-gw1 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2026-03-22 17:41:31.781000 [ 621 ] DEBUG : Command:[docker container list --all --filter name='^/roottestbackuprestoreonclustercancelbackup-gw1-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.809000 [ 621 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2026-03-22 17:41:31.810000 [ 621 ] DEBUG : No running containers for project: roottestbackuprestoreonclustercancelbackup-gw1 (cluster.py:879, cleanup) 2026-03-22 17:41:31.810000 [ 621 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2026-03-22 17:41:31.831000 [ 621 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2026-03-22 17:41:31.832000 [ 621 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.863000 [ 621 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2026-03-22 17:41:31.864000 [ 621 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2026-03-22 17:41:31.864000 [ 621 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2026-03-22 17:41:31.864000 [ 621 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2026-03-22 17:41:31.887000 [ 621 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2026-03-22 17:41:31.887000 [ 621 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ----------------- generated report log file: parallel0_1.jsonl ----------------- ============================== slowest durations =============================== 22.60s call test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 22.26s setup test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup 2.30s teardown test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup =========================== short test summary info ============================ FAILED test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup ============================== 1 failed in 59.58s ============================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_zysyhv --privileged --dns-search='.' --memory=30709035008 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel0_1.jsonl --report-log-exclude-logs-on-passed-tests test_backup_restore_on_cluster/test_cancel_backup.py::test_shutdown_cancels_backup -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.